home *** CD-ROM | disk | FTP | other *** search
/ PC Media 7 / PC MEDIA CD07.iso / share / uwin / cassette / cassette.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-28  |  1.2 KB  |  51 lines

  1. // Copyright (c) 1994, William Wagner
  2. // All Rights reserved.
  3. //
  4. // This source is a portion of a shareware program.  It may be distributed
  5. // only in its entirety.  The copyright statements must be included with any 
  6. // reproduction of this source.
  7. // 
  8.  
  9. // cassette.h : main header file for the CASSETTE application
  10. //
  11.  
  12. #ifndef __CASSETTE_H__
  13. #define __CASSETTE_H__
  14.  
  15. #ifndef __AFXWIN_H__
  16.     #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18.  
  19. #include "resource.h"        // main symbols
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CCassetteApp:
  23. // 
  24. // This is the application class.  There is only one instance.  It is 
  25. // the main application object.  There is very little implementation here.
  26. //
  27.  
  28. class CCassetteApp : public CWinApp
  29. {
  30. public:
  31.     //Simple constructor.
  32.     CCassetteApp();
  33.  
  34. // Overrides
  35.     //Initialize thyself.
  36.     virtual BOOL InitInstance();
  37.  
  38. // Implementation
  39.  
  40.     //Message map:  This class handles the about and help search commands.
  41.     //{{AFX_MSG(CCassetteApp)
  42.     afx_msg void OnAppAbout();
  43.     afx_msg void OnHelpSearch();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50. #endif
  51.